|
|||||||||||||||||||
This license of Clover is provided to support the development of Flock only. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover. | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
Entity.java | - | 100% | 100% | 100% |
|
1 |
package net.sf.flock.hibernate; |
|
2 |
|
|
3 |
public class Entity { |
|
4 |
|
|
5 |
private String id; |
|
6 |
|
|
7 | 2 |
public String getId() { |
8 | 2 |
return id; |
9 |
} |
|
10 |
|
|
11 | 2 |
protected void setId(String id) { |
12 | 2 |
this.id = id; |
13 |
} |
|
14 |
|
|
15 |
} |
|
16 |
|
|